home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / SocialIDNumber.java < prev    next >
Text File  |  1998-08-21  |  634b  |  32 lines

  1. package symantec.itools.awt.util.edit;
  2.  
  3.  
  4. import symantec.itools.awt.FormattedTextField;
  5.  
  6.  
  7. /**
  8.  * An abstract subclass of FormattedTextField for use as government insurance numbers.
  9.  *
  10.  *
  11.  * @see symantec.itools.awt.edit.SocialSecurityNumber
  12.  * @see symantec.itools.awt.edit.SociaInsuranceNumber
  13.  *
  14.  * @version 1.0, Nov 26, 1996
  15.  *
  16.  * @author    Symantec
  17.  *
  18.  */
  19.  
  20. public abstract class SocialIDNumber
  21.     extends FormattedTextField
  22. {
  23.      /**
  24.      * Create new formatted field.
  25.      *
  26.      * @param i number of columns in the field
  27.      */
  28.     protected SocialIDNumber(int i)
  29.     {
  30.         super(i);
  31.     }
  32. }